home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / source.exe / POSIX / MAKE / EMALLOC.C < prev    next >
Text File  |  1992-07-02  |  78b  |  8 lines

  1. char *emalloc(int cnt)
  2. {
  3.     char
  4.         *malloc ();
  5.  
  6.     return (malloc(cnt));
  7. }
  8.